home *** CD-ROM | disk | FTP | other *** search
/ SIGGRAPH 2002 Course Notes / SIGGRAPH 2002 - Course Notes - Disc 1.iso / pc / notes / 18 / supplemental_material / HTML_Ex / memo_ex4.html < prev   
Encoding:
Extensible Markup Language  |  2002-04-08  |  1.2 KB  |  37 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html 
  3.      PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  4.     "DTD/xhtml1-strict.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6.     <head>
  7.         <title> HTML Memo as XHTML document </title>
  8.         <style type="text/css">
  9.             table.contact { color: maroon; 
  10.                 background: rgb(204,204,255); }
  11.             h1 { font-weight: bold; font-size: 150%; color:blue }
  12.             h2 { margin-left: 5%; margin-right: 10%;}
  13.         </style>
  14.     </head>
  15.  
  16.     <body>
  17.         <h1> HTML Facts Memo </h1>
  18.         <table border="0">
  19.             <tr> <td> To:   </td> <td> Course attendees </td></tr>
  20.             <tr> <td> From: </td> <td> Kathy B          </td></tr>
  21.             <tr> <td> Re:   </td> <td> HTML             </td></tr>
  22.         </table>
  23.  
  24.         <h2> Browsers </h2>
  25.         <ul>                 
  26.             <li> Interpret the tags and render document  </li>
  27.             <li> Lenient about grammar                   </li>
  28.         </ul>
  29.  
  30.         <table class="contact">
  31.             <tr> <td> Kathy                 </td></tr>
  32.             <tr> <td> javakathy@teacher.com </td></tr>
  33.             <tr> <td> Gotha, FL 34734       </td></tr>
  34.         </table>
  35.     </body>
  36. </html>
  37.